home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Carousel
/
CAROUSEL.cdr
/
mactosh
/
appl
/
fontchan.sit
/
Font Changer
next >
Wrap
Text File
|
1986-06-10
|
801b
|
48 lines
/* Font Changer - a program to change all of the fonts/styles in a MacWrite document
into another font/style.
Programmer : Tom Dowdy, Notre Dame Computing Center
Copyright : 1986 Tom Dowdy
Starting Date : May 2, 1986
*/
#include <qd.h>
#include <qdvars.h>
#include <win.h>
#include <menu.h>
#include <event.h>
#include <te.h>
#include <stdio.h>
#include <dialog.h>
#include <seg.h>
#include <ctype.h>
main()
{
maxapplzone();
moremasters();
moremasters();
moremasters();
moremasters();
initgraf(&theport);
initfonts();
flushevents(everyevent,0);
initwindows();
teinit();
initdialogs(NULL);
initcursor();
dodialog();
}
dodialog()
{
dialogptr dptr;
dialogrecord drec;
int hit;
dptr = getnewdialog(128, &drec, (ptr)-1);
drawdialog(dptr);
modaldialog(NULL,&hit);
}